/* Normalize CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container img {
  height: 50px;
}

/* Header styles */
header {
  background-color: rgb(231, 140, 4);
  color: #fff;
  padding: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5em;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #f7f7f7;
}

.Heading h2 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  background-color: #333;
  padding: 30px;
}

.gallery-wildlife {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    background-color: #333;
  }
  
  .image-container-wildlife {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
  }
  
  .image-container-wildlife::before {
    content: "";
    display: block;
    padding-top: 100%;
    /* Maintain aspect ratio (1:1) for a square container */
  }
  
  .image-container-wildlife img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image-container-wildlife:hover img {
    transform: scale(1.1);
    /* Apply a slight scale effect on hover */
  }
  
  .image-container-wildlife .label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 14px;
  }
  
  /* Optional: Add caption styles */
  .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-container-wildlife:hover .image-caption {
    opacity: 1;
  }
  
  @media (max-width: 767px) {
    .gallery-wildlife {
      grid-template-columns: 1fr;
      /* Show only one column on smaller screens */
    }
  }

  .gallery-cat {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1px;
    background-color: #333;
  }
  
  .image-container-cat {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 300px;
    height: 300px;
  }
  
  .image-container-cat::before {
    content: "";
    display: block;
    padding-top: 100%;
    /* Maintain aspect ratio (1:1) for a square container */
  }
  
  .image-container-cat img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image-container-cat:hover img {
    transform: scale(1.1);
    /* Apply a slight scale effect on hover */
  }
  
  .image-container-cat .label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 14px;
  }
  
  /* Optional: Add caption styles */
  .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-container-cat:hover .image-caption {
    opacity: 1;
  }
  
  @media (max-width: 767px) {
    .gallery-cat {
      grid-template-columns: 1fr;
      /* Show only one column on smaller screens */
    }
  }

/* Footer styles */
footer {
    background-color: rgb(231, 140, 4);
    color: #000000;
    padding: 50px;
  }
  
  .footer-text {
    font-weight: bold;
    padding-bottom: 30px;
  }
  
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .footer-links a:hover {
    color: #000000;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .footer-social li {
    margin-right: 10px;
  }
  
  .footer-social a {
    color: #000000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #000000;
  }
  
  .footer-text h3 {
    color: #000000;
    font-size: 2em;
  }